home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -in_the_mag- / cologne / delitracker_ii / files / arexx.lzx / Arexx / dt_random.rexx < prev    next >
OS/2 REXX Batch file  |  2016-02-11  |  221b  |  19 lines

  1. /* DeliTracker - toggles random module */
  2.  
  3. address 'DELITRACKER'
  4.  
  5. options results
  6.  
  7.  
  8. status G rmo
  9.  
  10. if result == "no" then do
  11.     randmod yes
  12.     say "Random is now on..."
  13. end
  14. else do
  15.     randmod no
  16.     say "Random is now off..."
  17. end
  18.  
  19.